home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 26.zip / BS1 part 26 / Disk Workshop v2.3 BS1.adf / Appendix < prev    next >
Text File  |  1988-12-10  |  4KB  |  100 lines

  1.         Amiga DOS Error Codes
  2.  
  3.  
  4. m        Disk Device Errorsm
  5.  
  6.     The disk device errors are codes returned by the device
  7. driver (such as the trackdisk device for floppy disks, and the
  8. harddrive.device for many hard disks) when it is unable to
  9. perform the specified opertion for some reason.
  10.  
  11.  
  12. TDERR_NotSpecified    20    Something unspecified went wrong.
  13. TDERR_NoSecHdr        21    Sector header is missing.
  14. TDERR_BadSecPreamble    22    Sector preamble is bad.
  15. TDERR_BadSecID        23    Sector ID field is bad.
  16. TDERR_BadHdrSum        24    Sector header checksum is bad.
  17. TDERR_BadSecSum        25    The sector's checksum is bad.
  18. TDERR_TooFewSecs    26    Not enough sector on the cylinder.
  19. TDERR_BadSecHdr        27    Unable to read sector header.
  20. TDERR_WriteProt        28    The disk is write protected.
  21. TDERR_DiskChanged    29    The disk has been changed.
  22. TDERR_SeekError        30    Seeking past disk bounds.
  23. TDERR_NoMem        31    Not enough working memory.
  24. TDERR_BadUnitNum    32    The specified drive is not here.
  25. TDERR_BadDriveType    33    Not a standard disk (3.5")
  26. TDERR_DriveInUse    34    Another task has use of the drive.
  27. TDERR_PostReset        35    The reset key has been hit.
  28.  
  29.  
  30. m        Filing System Error codesm
  31.  
  32.     These error codes are the ones returned by the CLI or
  33. Workbench if there is a problem carrying out the specified
  34. operation. Some of these codes are not disk related.
  35.  
  36.  
  37.  
  38.  
  39.  
  40. m103: Insufficient Free Store
  41.         This means DOS ran out of memory.
  42. m104: Task table full
  43.     You are limited to 20 CLI tasks.
  44. m120: Argument line invalid or too long
  45.     The command sent to DOS was too big or incorrect.
  46. m121: File is not an object file
  47.     You cannot run a data file; it must be a program file.
  48. m122: Invalid resident library during load
  49.     One of the built in libraries is corrupt.
  50. m202: Object in use
  51.     You cannot write to a file that is locked by another task.
  52. m203:    Object already exists
  53.     Two files of the same name are not permitted.
  54. m204: Directory not found
  55.     You gave an invalid path.
  56. m205: Object not found
  57.     The specified file does not exist. Check your spelling.
  58. m206: Invalid window
  59.     When a CLI was opened the window parameters given were too big.
  60. m210: Invalid stream component name
  61.     The filename has an invalid character or is too long.
  62. m212: Object not of required type
  63.     You can't run a directory or list a program.
  64. m213: Disk not validated
  65.     Try DiskDoctor or Disk Repair.
  66. m214: Disk write-protected
  67.     You cannot write to a protected disk.
  68. m215: Rename across devices attempted
  69.     A file cannot be moved between two drives: it must be
  70.     copied.
  71. m216: Directory not empty
  72.     A directory must be empty before you can delete it.
  73. m218: Device not mounted
  74.     The device (or drive) specified does not exist.
  75. m220: Comment too big
  76.     File note's should be under 80 characters.
  77. m221: Disk full
  78.     You are out of space. Try deleting something useless
  79. m222: File is protected from deletion
  80.     A file with the delete protection bit set cannot be
  81.     deleted. You must first change the file's protection.
  82. m223: File is protected from writing.
  83.     The file's write protect bit is set.
  84. m224: File is protected from reading
  85.     The file's read protect bit is set.
  86. m225: Not a DOS disk
  87.     The disk is of the wrong type (you cannot read an FFS disk
  88.     in a standard disk drive).
  89. m226: No disk in drive
  90.     You cannot access an empty disk drive.
  91. m209: Packet request type unknown
  92.     An error that tell you the programmer made a mistake.
  93. m211: Invalid object lock
  94.     Ditto.
  95. m219: Seek error
  96.     You can't search past the end of a file.
  97. m232: No more entries in a directory
  98.     You can't get more files out of a directory than you put into it.
  99.  
  100.